home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / UNIX_COH / 2774A.ZIP / TOOLS1.SHZ / TOOLS1 / cuserid.c next >
C/C++ Source or Header  |  1991-07-03  |  162b  |  13 lines

  1. #include    <pwd.h>
  2. #include    <stddef.h>
  3.  
  4. /*    return name of uid    */
  5.  
  6. char *cuserid()
  7. {
  8.     struct passwd *entry;
  9.     entry =    getpwuid(geteuid());
  10.     return entry->pw_name;
  11. }
  12.  
  13.